home *** CD-ROM | disk | FTP | other *** search
/ By Popular Request 2.0 / By Popular Request 2.0 (Arsenal Computer).ISO / amiga_2 / cnttlkt2.lha / Routines / REPLACE < prev    next >
Text File  |  1994-12-13  |  128b  |  3 lines

  1. REPLACE: procedure;parse arg a,b,c;d=index(a,b);do while d~=0
  2.   a=insert(c,delstr(a,d,length(b)),d-1);d=index(a,b);end;return a
  3.